_scripts/demo-schemas/shipping[2].avsc (41 lines of code) (raw):
{
"type": "record",
"name": "Shipping",
"namespace": "com.epam.eco.schemacatalog.demo",
"fields": [
{
"name": "id",
"type": "int"
},
{
"name": "addressId",
"type": "int"
},
{
"name": "invoiceId",
"type": "int"
},
{
"name": "orderId",
"type": "int"
},
{
"name": "method",
"type": "string"
},
{
"name": "charge",
"type": "string",
"default": "N/A"
},
{
"name": "state",
"type": "string"
},
{
"name": "date",
"type": "int",
"logicalType": "date"
}
]
}